home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _4F1BBC82B21944A793F1DBA68F9F0275 < prev    next >
Encoding:
Text File  |  2006-08-04  |  766 b   |  29 lines

  1.  
  2. from PSPApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': u'Corel Corporation',
  7.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  8.         'Description': 'Factory default preset for ColorAdjustCurves effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_ColorAdjustCurves():
  14.     return {
  15.         'CurveParams': {
  16.             'Blue': [],
  17.             'RGB': [],
  18.             'Green': [],
  19.             'Red': []
  20.             },
  21.         'GeneralSettings': {
  22.             'AutoActionMode': 0,
  23.             'ExecutionMode': 0
  24.             }
  25.         }
  26.  
  27. def Do(Environment):
  28.     App.Do( Environment, 'ColorAdjustCurves', Preset_ColorAdjustCurves())
  29.